home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 029a / lite411q.zip / LIBRARY.TXT < prev    next >
Text File  |  1991-07-25  |  2KB  |  51 lines

  1.  
  2. FOR THE NEW BASIC PROGRAMMER
  3.  
  4.      To make use of the ProWindows(tm) functions, you must first
  5.      create the proper libraries so that QB.EXE (or QBX.EXE) and
  6.      the BC.EXE command line compiler can access the functions.
  7.  
  8.      First you are going to need a standard library.  A standard
  9.      library is something like an archive file (this program is
  10.      distributed as an archive) and it contains all the code and
  11.      data needed to make each function work.  Standard libraries
  12.      end with a ".LIB" file extension and are for the use of
  13.      LINK.EXE . These files are used only when creating stand-
  14.      alone programs (that do not require the QuickBASIC
  15.      environment), and when creating a "Quick Library".
  16.  
  17.      A Quick Library has a ".QLB" file extension and is used only
  18.      by BASIC environment.  You can think of a Quick Library has a
  19.      cross between a standard library (LIB) and a TSR type
  20.      program.  QLB files are loaded into memory at the same time
  21.      BASIC is loaded and they are what gives you the instant
  22.      access to the ProWindows(tm) functions.
  23.  
  24.      To create both types of libraries, we have included three (3)
  25.      batch (BAT) files that do it all for you.
  26.  
  27.      MOUSE.BAT creates a library that supports mouse control of
  28.      the windows.  NOMOUSE.BAT does everything the above does
  29.      except it does not support mouse control.  BROCHURE.BAT
  30.      creates a library for demonstrating our ProWindows(tm)
  31.      PROFESSIONAL package.
  32.  
  33.      To load the QLB file into BASIC, enter:
  34.  
  35.           QB /AH /L LITEDEMO              (for QuickBASIC)
  36.           QBX /AH /EA /L LITEDEMO         (for BASIC PDS 7)
  37.  
  38.      One last thing.  If you get a LINK error when you run any of
  39.      the batch files, make sure that you are using the latest
  40.      and correct version of the LINK.EXE program.  We have
  41.      received plenty of calls from people who were trying to use
  42.      the QuickC linker and it plain doesn't work.
  43.  
  44.      That's it!  If you need help, the instruction manual just
  45.      about covers everything.  If you still need a little nudge in
  46.      the right direction, contact our Product Support Service (See
  47.      SUPPORT.DOC).  Our staff is so darned friendly that we make
  48.      June Cleaver look like Freddy Krueger.
  49.  
  50.  
  51.